1. /* sndestrc.cpp by K.Tsuru */
  2. // function ID 112
  3. /*************
  4. SNumber class
  5. destructor
  6. **************/
  7. #ifndef SN_H
  8. #include "sn.h"
  9. #endif
  10. SNumber::~SNumber(){
  11. #ifndef NDEBUG
  12. if( aHead < aTail) SetError(FATAL, "SN destructor", 112);
  13. if( figure.size() ){
  14. if( (sign && !figure(aHead)) || (!sign && figure(aHead)) ) SetError(FATAL, "sign", 112);
  15. if(sign != UNDECIDED) CheckArray(112);
  16. }
  17. assert(aHead >= aTail);
  18. #endif
  19. // Restore cutDownTable[].
  20. if(pushCD & PUSH) CutDown(POP);
  21. objectCounter--;
  22. }

sndestrc.cpp : last modifiled at 2017/06/18 14:27:53(526 bytes)
created at 2016/04/11 11:36:47
The creation time of this html file is 2017/10/27 10:59:17 (Fri Oct 27 10:59:17 2017).